0df7c4974bc29b451f43d48a42b9ea7c7be31b47,plugins/plugin-hosted/codenvy-machine-hosted/src/main/java/com/codenvy/machine/backup/WorkspaceFsBackupScheduler.java,WorkspaceFsBackupScheduler,WorkspaceFsBackupScheduler,#WorkspaceRuntimes#MachineBackupManager#number#number#,65
Before Change
this.syncPort = syncPort == null || syncPort == 0 ? null : syncPort;
this.executor = Executors.newCachedThreadPool(
new ThreadFactoryBuilder().setNameFormat("MachineFsBackupScheduler-%s").build());
this.lastMachineSynchronizationTime = new ConcurrentHashMap<>();
this.devMachinesBackupsInProgress = new ConcurrentHashMap<>();
}
After Change
this.syncPort = syncPort == null || syncPort == 0 ? null : syncPort;
this.executor = Executors.newCachedThreadPool(
new ThreadFactoryBuilder().setNameFormat("MachineFsBackupScheduler-%s")
.setUncaughtExceptionHandler(LoggingUncaughtExceptionHandler.getInstance())
.build());
this.lastMachineSynchronizationTime = new ConcurrentHashMap<>();
this.devMachinesBackupsInProgress = new ConcurrentHashMap<>();
}